home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1999 November / cd joystick no109 novembre 1999.iso / Data / sharewares / utilitaires / XQXSET50.ZIP / _SETUP.1 / XQ WinHelp Options.xpl < prev    next >
Text File  |  1998-10-13  |  1KB  |  44 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="General Usage\Misc"
  5. "NAME"="WinHelp CTRL Keys"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Activate CTRL+SHIFT moving through helpfiles"
  8. "DESCRIPTION 1"="Activating this option allows you to move through every helpfile by pressing CTRL+SHIFT+CURSOR LEFT or CTRL+SHIFT+CURSOR RIGHT."
  9. "AUTHOR"="Xteq Systems"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  12. "COMMENT 2"="Version 1.0"
  13. "COMMENT 3"="from "Registry Dompteur" RegDom (c) 1996..98 by Horst Schmid, Horst_Schmid@compuserve.com"
  14.  
  15.  
  16. Sub Plugin_Initialize 
  17.  i=IniReadValue("WIN.INI","Windows Help","SeqTopicKeys")
  18.  if i=1 then
  19.   SetUIElement 1,true 
  20.  end if
  21. End Sub
  22.  
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27.  
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  b=GetUIElement(1)
  31.  if b=true then
  32.   Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","1")
  33.  else
  34.   Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","0")
  35.  end if
  36. End Sub
  37.  
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.  
  42.  
  43.  
  44.